home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-05  |  285 b   |  21 lines

  1. #include <sys/types.h>
  2.  
  3. struct timeb
  4. {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;
  7.     short        timezone;
  8.     short        dstflag;
  9. };
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. extern int    ftime(struct timeb *);
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21.